home *** CD-ROM | disk | FTP | other *** search
/ Palm Z22 / Palm Z22 CD.iso / pc / PalmSoftware.pkg / Contents / Resources / VolumeCheck < prev   
Text File  |  2005-08-11  |  860b  |  41 lines

  1. #!/bin/sh
  2. # File name:  VolumeCheck
  3. # Description:  
  4. # Copyright 2004, palmOne , Inc.
  5. #  
  6. # Modification History:
  7. #    <1>  05/06/04   JMP   Implemented
  8. #                     
  9. # Argument 1 (the only argument to VolumeCheck) is the full path to a volume 
  10. #   in Installer's Target Select panel that a user can choose to
  11. #   install the software on.
  12. # The path is of the form "/" or /Volume/{volume name}
  13. #
  14.  
  15. retval=0
  16. if [ -e "$1/System/Library/CFMSupport" ]
  17. then
  18.         if [ -e "$1/Applications" ]
  19.             then
  20.                 if [  -e "$1/Library" ]
  21.                         then
  22.                     retval=0
  23.                 else
  24.                     let retval=(1<<5)            
  25.                     fi
  26.         else
  27.             let retval=(1<<5)            
  28.     fi
  29.     else
  30.         let retval=(1<<5)            
  31. fi
  32.  
  33. # Sets the message value bits (bits 0 to 4) to 16,
  34. # specifying the message associated with "16" in the strings file.
  35. #  
  36. #let retval=(retval|16)
  37. exit $retval